home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / compulse.swf / scripts / DefineSprite_311 / frame_1 / DoAction.as
Text File  |  2013-04-24  |  212b  |  10 lines

  1. onEnterFrame = function()
  2. {
  3.    if(this.hitTest(_root.ball) && _root.xVel > 0)
  4.    {
  5.       _root.xVel = - Math.abs(_root.xVel);
  6.       _root.ball._x = this._x - _root.radius;
  7.       _root.xDamper();
  8.    }
  9. };
  10.